home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / os-includeppc / powerpc / portsPPC.h < prev    next >
C/C++ Source or Header  |  1998-04-07  |  560b  |  34 lines

  1. #ifndef POWERPC_PORTSPPC_H
  2. #define POWERPC_PORTSPPC_H
  3.  
  4. /*
  5. **  $VER: portsPPC.h 2.0 (15.03.98)
  6. **  WarpOS Release 14.1
  7. **
  8. **  '(C) Copyright 1998 Haage & Partner Computer GmbH'
  9. **       All Rights Reserved
  10. */
  11.  
  12.  
  13. #ifndef EXEC_PORTS_H
  14. #include <exec/ports.h>
  15. #endif
  16.  
  17. #ifndef EXEC_LISTS_H
  18. #include <exec/lists.h>
  19. #endif
  20.  
  21. #ifndef POWERPC_SEMAPHORESPPC_H
  22. #include <powerpc/semaphoresPPC.h>
  23. #endif
  24.  
  25. struct MsgPortPPC {
  26.         struct MsgPort mp_Port;
  27.         struct List mp_IntMsg;
  28.         struct SignalSemaphorePPC mp_Semaphore;
  29. };
  30.  
  31. #define NT_MSGPORTPPC 101
  32.  
  33. #endif
  34.